home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / 3dvect37.zip / TEMPLATE.ASM < prev    next >
Assembly Source File  |  1994-06-22  |  628b  |  29 lines

  1.         .386p
  2.         jumps
  3.  
  4. code32  segment para public use32
  5.         assume cs:code32, ds:code32
  6.  
  7.         include pmode.ext       ; protected mode externals by TRAN
  8.         include xmouse.ext      ; xmode mouse externals
  9.         include xmode.ext       ; xmode externals by matt pritchard
  10.         include irq.ext
  11.         include 3d.ext
  12.         include stars.ext
  13.         include font.ext
  14.  
  15.         include macros.inc
  16.         include equ.inc
  17.  
  18. ; your code goes here, all external routines/variables are defined above
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. ; now just link your code with the other modules...
  26.  
  27. code32  ends
  28.         end
  29.